Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new matmul test with M and N tiled as scf.for loop nest instead of air.launch #827

Merged
merged 5 commits into from
Jan 9, 2025

Conversation

erwei-xilinx
Copy link
Collaborator

Pseudo code for the GEMM tiling strategy:

air.launch in (1, 1):
  for n in range(N):
    for m in range(M):
      zero_fill_acc
      for k in range(K):
        air.herd %h_m, %h_n in (4, 4):
          mmul
      memcpy_acc

Depends on #825 and #826.

@erwei-xilinx erwei-xilinx marked this pull request as ready for review January 9, 2025 06:59
@erwei-xilinx erwei-xilinx requested a review from fifield as a code owner January 9, 2025 06:59
@erwei-xilinx erwei-xilinx merged commit 613aa9c into Xilinx:main Jan 9, 2025
19 checks passed
@erwei-xilinx erwei-xilinx deleted the new_matmul_tiling_strategy# branch January 9, 2025 07:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant